home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-11-05 | 288 b | 15 lines |
- # Makefile for glob source is in -*- text -*- mode.
-
- CFLAGS = -g
- RM = rm -f
-
- libglob.a: glob.o tilde.o
- $(RM) -f $@
- $(AR) clq $@ glob.o tilde.o
- -if [ -f "$(RANLIB)" ]; then $(RANLIB) libglob.a; fi
-
- tilde-test: tilde.c
- $(CC) $(CFLAGS) -o tilde-test -DTEST tilde.c
- clean:
- $(RM) *.o *.a
-